.anim {
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/* Soldan giriş */
.a1 {
    animation-name: slideLeft;
    animation-delay: 0.2s;
}

/* Alttan fade */
.a2 {
    animation-name: fadeUp;
    animation-delay: 0.8s;
}

/* Sağdan giriş */
.a3 {
    animation-name: slideRight;
    animation-delay: 1.4s;
}

.a4 {
    animation-name: fadeUp;
    animation-delay: 2.0s;
}

/* Keyframes */

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ref-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
}

/* logolar ilk başta gri */
.ref-box img {
   /* filter: grayscale(100%);*/
    opacity: .7;
    transition: all .3s ease;
    max-height: 60px;
}

/* hover efekti */
.ref-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.ref-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

a.btn-secondary {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    gap: 12px;
    padding: 10px 30px;
    border-radius: 12px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

a.btn-secondary:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.b{
  font-weight:800;
  /* color:#000; */
}

 .Custom-buttons .btn.btn-primary {
    background: var(--gradient-color);
    border-color: transparent !important;
    color: var(--contrast-color);
}

    .Custom-buttons .btn.btn-primary:hover {
        color: #fff;
        background: linear-gradient(135deg, #4A2D85 0%, #8B5CC8 100%);
        box-shadow: 0 4px 15px rgba(107, 63, 160, 0.4);
        transform: translateY(-2px);
    }

.Custom-buttons .btn.btn-outline {
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    color: var(--accent-color);
}

    .Custom-buttons .btn.btn-outline:hover {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
        transform: translateY(-2px);
    }



.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--surface-color);
}
.services .service-card .card-action img {
    width: 40px; /* font-size yerine width/height */
    height: 40px;
    transition: transform 0.3s ease;
}

.services .service-card .card-action:hover img {
    transform: rotate(45deg);
}


/*layout blog*/
.section-accent-bar {
    width: 40px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, #3D2270, #6B3FA0);
    margin: 8px auto 0;
}

/* Kolon başlığı */
.blog-col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.blog-col-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3D2270, #6B3FA0);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .blog-col-icon i {
        font-size: 14px;
        color: #fff;
    }

.blog-col-label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.blog-col-count {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-left: auto;
}

/* Kart */
.blog-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .25s;
}

    .blog-card:hover {
        border-color: rgba(107,63,160,0.45);
        background: rgba(107,63,160,0.07);
    }

.blog-card-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 12px 14px;
}

/* Badges */
.blog-card-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.bc-badge-blog {
    font-size: 10px;
    background: rgba(107,63,160,0.25);
    color: #a78bca;
    border-radius: 20px;
    padding: 2px 8px;
    border: 1px solid rgba(107,63,160,0.3);
}

.bc-badge-podcast {
    font-size: 10px;
    background: rgba(29,158,117,0.2);
    color: #5DCAA5;
    border-radius: 20px;
    padding: 2px 8px;
    border: 1px solid rgba(29,158,117,0.25);
}

/* Meta */
.blog-card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

    .blog-card-meta span {
        font-size: 10px;
        color: rgba(255,255,255,0.35);
    }

    .blog-card-meta i {
        margin-right: 3px;
    }

.blog-card-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.blog-card-summary {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Footer */
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-card-date {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
}

.blog-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-podcast-listen {
    font-size: 10px;
    background: rgba(29,158,117,0.15);
    color: #5DCAA5;
    border: 1px solid rgba(29,158,117,0.25);
    border-radius: 20px;
    padding: 3px 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: .2s;
}

    .btn-podcast-listen:hover {
        background: rgba(29,158,117,0.28);
        color: #5DCAA5;
    }

.btn-blog-read {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: .2s;
}

.blog-card:hover .btn-blog-read {
    color: #8B5CC8;
}

    .blog-card:hover .btn-blog-read i {
        transform: translateX(3px);
    }

.btn-blog-read i {
    transition: transform .2s;
}